Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.IO.Exchangeable Namespace / IExtensionCollection<T> Interface / FindAll<E> Method
The type of extension object.


In This Topic
    FindAll<E> Method (IExtensionCollection<T>)
    In This Topic
    Finds all extension object in the collection specified by E.
    Syntax
    'Declaration
     
    
    Function FindAll(Of E As IExtension(Of T))() As ICollection(Of E)
    'Usage
     
    
    Dim instance As IExtensionCollection(Of T)
    Dim value As ICollection(Of E)
     
    value = instance.FindAll(Of E)()
    ICollection<E> FindAll<E>()
    where E: IExtension<T>

    Type Parameters

    E
    The type of extension object.

    Return Value

    A collection of all extension objects in the collection that implement the specified type.
    See Also